home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //
- // thing-1.inc
- //
- // "Easy POV Oven"
- //
- // Written By: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- // All code and techniques are PUBLIC DOMAIN - have fun with it!
- //
- //------------------------------------------------------------------->
- //
- // This builds the Thing_1 object.
- //
- //------------------------------------------------------------------->
- //
- // Trace once for image_map, then again in main scene.
-
- #declare Thing_1 = union {
-
- #declare A = 0 #while ( A < 360 )
- sphere { 0, 0.3
- translate x * 0.5
- rotate z * A * 13
- translate x * 3
- rotate y * A
- } // End of sphere.
- #declare A = A + 2 #end
-
- pigment { Blue }
- finish{Shiny}
-
- } // End of union.
-
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-